2007-06-05 Richard Hult <richard@imendio.com>
* gdk/quartz/GdkQuartzWindow.c: Don't let temp windows become key
window.
svn path=/trunk/; revision=18046
+2007-06-05 Richard Hult <richard@imendio.com>
+
+ * gdk/quartz/GdkQuartzWindow.c: Don't let temp windows become key
+ window.
+
2007-06-06 Tor Lillqvist <tml@novell.com>
* gdk/x11/gdkwindow-x11.c (gdk_window_set_opacity): Fix
if (!private->accept_focus)
return NO;
- /* FIXME: Is this right? If so, the switch shouldn't be needed. Need
- * this + some tweaking to the event/grab code to get menus
- * working...
+ /* Popup windows should not be able to get focused in the window
+ * manager sense, it's only handled through grabs.
*/
- /*if (private->window_type == GDK_WINDOW_TEMP)
+ if (private->window_type == GDK_WINDOW_TEMP)
return NO;
- */
switch (impl->type_hint)
{